home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Web Server / Apache Configuration Editor.EXE / access.conf-dist-win < prev    next >
Text File  |  1998-09-03  |  3KB  |  102 lines

  1. # access.conf: Global access configuration
  2. # Online docs at http://www.apache.org/
  3.  
  4. # This file defines server settings which affect which types of services
  5. # are allowed, and in what circumstances. 
  6.  
  7. # Each directory to which Apache has access, can be configured with respect
  8. # to which services and features are allowed and/or disabled in that
  9. # directory (and its subdirectories). 
  10.  
  11. # Note: Where filenames are specified, you must use forward slashes
  12. # instead of backslashes. e.g. "c:/apache" instead of "c:\apache". If
  13. # the drive letter is ommited, the drive where Apache.exe is located
  14. # will be assumed
  15.  
  16. # Originally by Rob McCool
  17.  
  18. # First, we configure the "default" to be a very restrictive set of 
  19. # permissions.  
  20.  
  21. # XXXX disabled because it is currently broken on Win32
  22. #<Directory />
  23. #Options FollowSymLinks
  24. #AllowOverride None
  25. #</Directory>
  26.  
  27. # Note that from this point forward you must specifically allow
  28. # particular features to be enabled - so if something's not working as
  29. # you might expect, make sure that you have specifically enabled it
  30. # below.
  31.  
  32. # This should be changed to whatever you set DocumentRoot to.
  33.  
  34. <Directory "@@ServerRoot@@/htdocs">
  35.  
  36. # This may also be "None", "All", or any combination of "Indexes",
  37. # "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
  38.  
  39. # Note that "MultiViews" must be named *explicitly* --- "Options All"
  40. # doesn't give it to you.
  41.  
  42. Options Indexes FollowSymLinks
  43.  
  44. # This controls which options the .htaccess files in directories can
  45. # override. Can also be "All", or any combination of "Options", "FileInfo", 
  46. # "AuthConfig", and "Limit"
  47.  
  48. AllowOverride None
  49.  
  50. # Controls who can get stuff from this server.
  51.  
  52. order allow,deny
  53. allow from all
  54.  
  55. </Directory>
  56.  
  57. # @@ServerRoot@@/cgi-bin should be changed to whatever your ScriptAliased
  58. # CGI directory exists, if you have that configured.
  59.  
  60. <Directory "@@ServerRoot@@/cgi-bin">
  61. AllowOverride None
  62. Options None
  63. </Directory>
  64.  
  65. # Allow server status reports, with the URL of http://servername/server-status
  66. # Change the ".your_domain.com" to match your domain to enable.
  67.  
  68. #<Location /server-status>
  69. #SetHandler server-status
  70.  
  71. #order deny,allow
  72. #deny from all
  73. #allow from .your_domain.com
  74. #</Location>
  75.  
  76. # Allow remote server configuration reports, with the URL of
  77. #  http://servername/server-info (requires that mod_info.c be loaded).
  78. # Change the ".your_domain.com" to match your domain to enable.
  79.  
  80. #<Location /server-info>
  81. #SetHandler server-info
  82.  
  83. #order deny,allow
  84. #deny from all
  85. #allow from .your_domain.com
  86. #</Location>
  87.  
  88. # There have been reports of people trying to abuse an old bug from pre-1.1
  89. # days.  This bug involved a CGI script distributed as a part of Apache.
  90. # By uncommenting these lines you can redirect these attacks to a logging 
  91. # script on phf.apache.org.  Or, you can record them yourself, using the script
  92. # support/phf_abuse_log.cgi.
  93.  
  94. #<Location /cgi-bin/phf*>
  95. #deny from all
  96. #ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
  97. #</Location>
  98.  
  99. # You may place any other directories or locations you wish to have
  100. # access information for after this one.
  101.  
  102.